The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 04
LICENSE 33
META.json 89
META.yml 34
Makefile.PL 2740
README 22
dist.ini 14
lib/Pod/Weaver/Config/Assembler.pm 33
lib/Pod/Weaver/Config/Finder.pm 33
lib/Pod/Weaver/Config.pm 33
lib/Pod/Weaver/Plugin/EnsurePod5.pm 33
lib/Pod/Weaver/Plugin/H1Nester.pm 33
lib/Pod/Weaver/Plugin/Transformer.pm 33
lib/Pod/Weaver/PluginBundle/CorePrep.pm 33
lib/Pod/Weaver/PluginBundle/Default.pm 34
lib/Pod/Weaver/Role/Dialect.pm 33
lib/Pod/Weaver/Role/Finalizer.pm 33
lib/Pod/Weaver/Role/Plugin.pm 33
lib/Pod/Weaver/Role/Preparer.pm 33
lib/Pod/Weaver/Role/Section.pm 33
lib/Pod/Weaver/Role/Transformer.pm 33
lib/Pod/Weaver/Section/Authors.pm 33
lib/Pod/Weaver/Section/Collect.pm 33
lib/Pod/Weaver/Section/Generic.pm 33
lib/Pod/Weaver/Section/Leftovers.pm 33
lib/Pod/Weaver/Section/Legal.pm 33
lib/Pod/Weaver/Section/Name.pm 33
lib/Pod/Weaver/Section/Region.pm 33
lib/Pod/Weaver/Section/Version.pm 33
lib/Pod/Weaver.pm 44
30 files changed (This is a version diff) 114137
@@ -1,5 +1,9 @@
 Revision history for Pod-Weaver
 
+3.100310  2010-01-31 15:32:00 America/New_York
+          add =func/FUNCTIONS to match =method and =attr
+          require newer Pod::Elemental (to avoid Moose incompat)
+
 3.093530  2009-12-19 22:52:47 America/New_York
           add the -Transformer plugin to allow pass-through for arbitrary
           Pod::Elemental::Transformers
@@ -1,4 +1,4 @@
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@ b) the "Artistic License"
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2009 by Ricardo SIGNES.
+This software is Copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software, licensed under:
 
@@ -270,7 +270,7 @@ That's all there is to it!
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2009 by Ricardo SIGNES.
+This software is Copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software, licensed under:
 
@@ -2,31 +2,32 @@
    "resources" : {
       "repository" : "http://github.com/rjbs/pod-weaver"
    },
+   "generated_by" : "Dist::Zilla version 1.100160",
    "meta-spec" : {
       "version" : 1.4,
       "url" : "http://module-build.sourceforge.net/META-spec-v1.4.html"
    },
-   "generated_by" : "Dist::Zilla version 1.093400",
-   "version" : "3.093530",
+   "version" : "3.100310",
    "name" : "Pod-Weaver",
    "author" : [
       "Ricardo SIGNES <rjbs@cpan.org>"
    ],
    "license" : "perl",
    "requires" : {
-      "PPI" : "0",
       "Config::MVP::Reader::INI" : "0",
-      "Pod::Elemental" : "0.092941",
+      "PPI" : "0",
       "namespace::autoclean" : "0",
+      "Pod::Elemental" : "0.100220",
+      "ExtUtils::MakeMaker" : "6.11",
       "String::RewritePrefix" : "0",
-      "Moose::Autobox" : "0.10",
       "Pod::Eventual::Simple" : "0.004",
-      "Config::MVP" : "0.093120",
+      "Moose::Autobox" : "0.10",
       "Test::Differences" : "0",
+      "Config::MVP" : "0.093120",
       "Software::License" : "0",
       "List::MoreUtils" : "0",
-      "String::Flogger" : "1",
-      "Moose" : "0"
+      "Moose" : "0",
+      "String::Flogger" : "1"
    },
    "abstract" : "weave together a Pod document from an outline"
 }
@@ -2,7 +2,7 @@
 abstract: 'weave together a Pod document from an outline'
 author:
   - 'Ricardo SIGNES <rjbs@cpan.org>'
-generated_by: 'Dist::Zilla version 1.093400'
+generated_by: 'Dist::Zilla version 1.100160'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -11,11 +11,12 @@ name: Pod-Weaver
 requires:
   Config::MVP: 0.093120
   Config::MVP::Reader::INI: 0
+  ExtUtils::MakeMaker: 6.11
   List::MoreUtils: 0
   Moose: 0
   Moose::Autobox: 0.10
   PPI: 0
-  Pod::Elemental: 0.092941
+  Pod::Elemental: 0.100220
   Pod::Eventual::Simple: 0.004
   Software::License: 0
   String::Flogger: 1
@@ -24,4 +25,4 @@ requires:
   namespace::autoclean: 0
 resources:
   repository: http://github.com/rjbs/pod-weaver
-version: 3.093530
+version: 3.100310
@@ -4,31 +4,44 @@ use warnings;
 
 
 
-use ExtUtils::MakeMaker;
-
-WriteMakefile(
-  DISTNAME  => 'Pod-Weaver',
-  NAME      => 'Pod::Weaver',
-  AUTHOR    => "Ricardo\ SIGNES\ \<rjbs\@cpan\.org\>",
-  ABSTRACT  => "weave\ together\ a\ Pod\ document\ from\ an\ outline",
-  VERSION   => '3.093530',
-  EXE_FILES => [ qw() ],
-  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
-  PREREQ_PM    => {
-    "PPI" => '0',
-    "Config::MVP::Reader::INI" => '0',
-    "Pod::Elemental" => '0.092941',
-    "namespace::autoclean" => '0',
-    "String::RewritePrefix" => '0',
-    "Moose::Autobox" => '0.10',
-    "Pod::Eventual::Simple" => '0.004',
-    "Config::MVP" => '0.093120',
-    "Test::Differences" => '0',
-    "Software::License" => '0',
-    "List::MoreUtils" => '0',
-    "String::Flogger" => '1',
-    "Moose" => '0',
-  },
-  test => {TESTS => 't/*.t'}
-);
+use ExtUtils::MakeMaker 6.11;
+
+
+
+my %WriteMakefileArgs = (
+                       'test' => {
+                                   'TESTS' => 't/*.t'
+                                 },
+                       'NAME' => 'Pod::Weaver',
+                       'DISTNAME' => 'Pod-Weaver',
+                       'AUTHOR' => 'Ricardo SIGNES <rjbs@cpan.org>',
+                       'ABSTRACT' => 'weave together a Pod document from an outline',
+                       'EXE_FILES' => [],
+                       'VERSION' => '3.100310',
+                       'LICENSE' => 'perl',
+                       'PREREQ_PM' => {
+                                        'PPI' => '0',
+                                        'Config::MVP::Reader::INI' => '0',
+                                        'Pod::Elemental' => '0.100220',
+                                        'namespace::autoclean' => '0',
+                                        'ExtUtils::MakeMaker' => '6.11',
+                                        'String::RewritePrefix' => '0',
+                                        'Moose::Autobox' => '0.10',
+                                        'Pod::Eventual::Simple' => '0.004',
+                                        'Config::MVP' => '0.093120',
+                                        'Test::Differences' => '0',
+                                        'Software::License' => '0',
+                                        'List::MoreUtils' => '0',
+                                        'String::Flogger' => '1',
+                                        'Moose' => '0'
+                                      }
+                     );
+
+
+delete $WriteMakefileArgs{LICENSE}
+  unless eval { ExtUtils::MakeMaker->VERSION(6.31) };
+
+WriteMakefile(%WriteMakefileArgs);
+
+
 
@@ -1,11 +1,11 @@
 
 
 This archive contains the distribution Pod-Weaver, version
-3.093530:
+3.100310:
 
   weave together a Pod document from an outline
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -9,7 +9,7 @@ List::MoreUtils = 0
 Moose           = 0
 Moose::Autobox  = 0.10 ; each_*
 PPI             = 0    ; for detection of here-docs
-Pod::Elemental  = 0.092941 ; what we tested against
+Pod::Elemental  = 0.100220 ; compat with recent Moose
 String::Flogger = 1
 Config::MVP::Reader::INI = 0 ; to make testing simpler
 Pod::Eventual::Simple    = 0.004 ; required by elemental
@@ -20,3 +20,6 @@ namespace::autoclean     = 0
 
 [@RJBS]
 version = 3
+
+[@Git]
+tag_format = %v
@@ -1,5 +1,5 @@
 package Pod::Weaver::Config::Assembler;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 extends 'Config::MVP::Assembler';
 with 'Config::MVP::Assembler::WithBundles';
@@ -33,7 +33,7 @@ Pod::Weaver::Config::Assembler - Pod::Weaver-specific subclass of Config::MVP::A
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 AUTHOR
 
@@ -41,7 +41,7 @@ version 3.093530
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Config::Finder;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 extends 'Config::MVP::Reader::Finder';
 with 'Pod::Weaver::Config';
@@ -22,7 +22,7 @@ Pod::Weaver::Config::Finder - the reader for weaver.ini files
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 AUTHOR
 
@@ -30,7 +30,7 @@ version 3.093530
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Config;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 # ABSTRACT: stored configuration loader role
 
@@ -32,7 +32,7 @@ Pod::Weaver::Config - stored configuration loader role
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 DESCRIPTION
 
@@ -53,7 +53,7 @@ will be pre-loaded with a starting section for root configuration.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Plugin::EnsurePod5;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Preparer';
 # ABSTRACT: ensure that the Pod5 translator has been run on this document
@@ -52,7 +52,7 @@ Pod::Weaver::Plugin::EnsurePod5 - ensure that the Pod5 translator has been run o
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -66,7 +66,7 @@ non-whitespace-only Nonpod elements are found, an exception is raised.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Plugin::H1Nester;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Transformer';
 # ABSTRACT: structure the input pod document into head1-grouped sections
@@ -39,7 +39,7 @@ Pod::Weaver::Plugin::H1Nester - structure the input pod document into head1-grou
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -53,7 +53,7 @@ C<=head1> elements.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Plugin::Transformer;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Dialect';
 # ABSTRACT: apply arbitrary transformers
@@ -59,7 +59,7 @@ Pod::Weaver::Plugin::Transformer - apply arbitrary transformers
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -85,7 +85,7 @@ and that transformer will then be handed the entire input Pod document.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 package Pod::Weaver::PluginBundle::CorePrep;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 # ABSTRACT: a bundle for the most commonly-needed prep work for a pod document
 
 use Pod::Weaver::Plugin::H1Nester;
@@ -25,7 +25,7 @@ Pod::Weaver::PluginBundle::CorePrep - a bundle for the most commonly-needed prep
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 AUTHOR
 
@@ -33,7 +33,7 @@ version 3.093530
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 package Pod::Weaver::PluginBundle::Default;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 # ABSTRACT: a bundle for the most commonly-needed prep work for a pod document
 
 
@@ -23,6 +23,7 @@ sub mvp_bundle_config {
 
     [ 'ATTRIBUTES',         _exp('Collect'),   { command => 'attr'   } ],
     [ 'METHODS',            _exp('Collect'),   { command => 'method' } ],
+    [ 'FUNCTIONS',          _exp('Collect'),   { command => 'func'   } ],
 
     [ '@Default/Leftovers', _exp('Leftovers'), {} ],
 
@@ -44,7 +45,7 @@ Pod::Weaver::PluginBundle::Default - a bundle for the most commonly-needed prep
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -84,7 +85,7 @@ It is nearly equivalent to the following:
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Role::Dialect;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 with 'Pod::Weaver::Role::Plugin';
 # ABSTRACT: something that translates Pod subdialects to standard Pod5
@@ -19,7 +19,7 @@ Pod::Weaver::Role::Dialect - something that translates Pod subdialects to standa
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 IMPLEMENTING
 
@@ -34,7 +34,7 @@ C<pod_document> entry.  It is expected to modify the document in place.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Role::Finalizer;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 with 'Pod::Weaver::Role::Plugin';
 # ABSTRACT: something that goes back and finishes up after main weaving is over
@@ -19,7 +19,7 @@ Pod::Weaver::Role::Finalizer - something that goes back and finishes up after ma
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 IMPLEMENTING
 
@@ -35,7 +35,7 @@ provide a C<finalize_document> method which will be called as follows:
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Role::Plugin;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 # ABSTRACT: a Pod::Weaver plugin
 
@@ -32,7 +32,7 @@ Pod::Weaver::Role::Plugin - a Pod::Weaver plugin
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 ATTRIBUTES
 
@@ -56,7 +56,7 @@ This is the most basic role that all plugins must perform.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Role::Preparer;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 with 'Pod::Weaver::Role::Plugin';
 # ABSTRACT: something that mucks about with the input before weaving begins
@@ -19,7 +19,7 @@ Pod::Weaver::Role::Preparer - something that mucks about with the input before w
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 IMPLEMENTING
 
@@ -34,7 +34,7 @@ the input in place.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Role::Section;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 with 'Pod::Weaver::Role::Plugin';
 # ABSTRACT: a plugin that will get a section into a woven document
@@ -19,7 +19,7 @@ Pod::Weaver::Role::Section - a plugin that will get a section into a woven docum
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 IMPLEMENTING
 
@@ -37,7 +37,7 @@ free to behave differently if it's needed to do something really cool.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Role::Transformer;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose::Role;
 with 'Pod::Weaver::Role::Plugin';
 # ABSTRACT: something that restructures a Pod5 document
@@ -19,7 +19,7 @@ Pod::Weaver::Role::Transformer - something that restructures a Pod5 document
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 IMPLEMENTING
 
@@ -34,7 +34,7 @@ It is expected to modify the input in place.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Authors;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 # ABSTRACT: a section listing authors
@@ -44,7 +44,7 @@ Pod::Weaver::Section::Authors - a section listing authors
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -63,7 +63,7 @@ given, it will do nothing.  Otherwise, it produces a hunk like this:
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Collect;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 with 'Pod::Weaver::Role::Transformer';
@@ -105,7 +105,7 @@ Pod::Weaver::Section::Collect - a section that gathers up specific commands
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -126,7 +126,7 @@ in the source document.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Generic;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 # ABSTRACT: a generic section, found by lifting sections
@@ -64,7 +64,7 @@ Pod::Weaver::Section::Generic - a generic section, found by lifting sections
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -87,7 +87,7 @@ raised if this section can't be found.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Leftovers;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 with 'Pod::Weaver::Role::Finalizer';
@@ -65,7 +65,7 @@ Pod::Weaver::Section::Leftovers - a place to put everything that nothing else us
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -83,7 +83,7 @@ document.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Legal;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 # ABSTRACT: a section for the copyright and license
@@ -38,7 +38,7 @@ Pod::Weaver::Section::Legal - a section for the copyright and license
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -60,7 +60,7 @@ C<license> is expected to be a L<Software::License> object.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Name;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 # ABSTRACT: add a NAME section with abstract (for your Perl module)
@@ -54,7 +54,7 @@ Pod::Weaver::Section::Name - add a NAME section with abstract (for your Perl mod
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -77,7 +77,7 @@ comment in this form:
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Region;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 # ABSTRACT: find a region and put its contents in place where desired
@@ -57,7 +57,7 @@ Pod::Weaver::Section::Region - find a region and put its contents in place where
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 AUTHOR
 
@@ -65,7 +65,7 @@ version 3.093530
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver::Section::Version;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 with 'Pod::Weaver::Role::Section';
 # ABSTRACT: add a VERSION pod section
@@ -37,7 +37,7 @@ Pod::Weaver::Section::Version - add a VERSION pod section
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 OVERVIEW
 
@@ -56,7 +56,7 @@ It will do nothing if there is no C<version> entry in the input.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -1,5 +1,5 @@
 package Pod::Weaver;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
 use Moose;
 # ABSTRACT: weave together a Pod document from an outline
 
@@ -17,7 +17,7 @@ use String::Flogger;
 {
   package
     Pod::Weaver::_Logger;
-our $VERSION = '3.093530';
+our $VERSION = '3.100310';
   sub log { printf "%s\n", String::Flogger->flog($_[1]) }
   sub new { bless {} => $_[0] }
 }
@@ -155,7 +155,7 @@ Pod::Weaver - weave together a Pod document from an outline
 
 =head1 VERSION
 
-version 3.093530
+version 3.100310
 
 =head1 SYNOPSIS
 
@@ -233,7 +233,7 @@ L<Pod::Weaver::PluginBundle::Default>.
 
 =head1 COPYRIGHT AND LICENSE
 
-This software is copyright (c) 2009 by Ricardo SIGNES.
+This software is copyright (c) 2010 by Ricardo SIGNES.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.